home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Tools & Apps / Graphics & Imaging / SLUDGE 2.0 / Source Code / Parasite_Manager.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-09-14  |  1.8 KB  |  35 lines  |  [TEXT/MPS ]

  1. /*•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
  2.   •                                                                           •
  3.   •   File Name:    Parasite_Manager.h                                          •
  4.   •   ----------                                                              •
  5.   •                                                                           •
  6.   •   Copyright © 1990 Apple Computer, Inc.  All Rights Reserved              •
  7.   •                                                                           •
  8.   •       Description                                                         •
  9.   •       -----------                                                         •
  10.   •       This file contains the public interface to the parasite manager.      •
  11.   •          The parasite manager will install and remove the SLUDGE parasite.   •
  12.   •          The SLUDGE parasite is what slows down the machine.                  •
  13.   •                                                                           •
  14.   •       History                                                             •
  15.   •       -------                                                             •
  16.   •                                                                           •
  17.   •       Author          Date            Description                         •
  18.   •       ------------------------------------------------------------------  •
  19.   •       Kevin McEntee   2/20/90         Original Implementation             •
  20.   •                                                                           •
  21.   •                                                                           •
  22.   •••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••*/
  23.  
  24. #ifndef        __PMAN__
  25. #define        __PMAN__
  26.  
  27.  
  28.  
  29. void Install(Handle cdevStorage, long Sludge_Factor);
  30.  
  31. void remove(Handle cdevStorage);
  32.  
  33. #endif
  34.  
  35.